Skip to content

fix: update all non-major dependencies#556

Merged
renovate[bot] merged 1 commit intomainfrom
renovate/all-minor-patch
May 1, 2026
Merged

fix: update all non-major dependencies#556
renovate[bot] merged 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented May 1, 2026

This PR contains the following updates:

Package Change Age Confidence Type Update
@slack/bolt (source) 4.6.04.7.2 age confidence dependencies minor
@types/node (source) 24.12.024.12.2 age confidence devDependencies patch
@typescript-eslint/eslint-plugin (source) 8.58.08.59.1 age confidence devDependencies minor
@typescript-eslint/parser (source) 8.58.08.59.1 age confidence devDependencies minor
aws-cdk (source) 2.1116.02.1120.0 age confidence devDependencies minor
dotenv 17.4.017.4.2 age confidence dependencies patch
node (source) 24.14.124.15.0 age confidence minor
prettier (source) 3.8.13.8.3 age confidence devDependencies patch
typescript-eslint (source) 8.58.08.59.1 age confidence devDependencies minor

Release Notes

slackapi/bolt-js (@​slack/bolt)

v4.7.2

Compare Source

Patch Changes
  • 4545150: Require exact ssl_check=1 value to bypass signature verification, preventing truthy but incorrect values from skipping authentication checks.

v4.7.1

Compare Source

Patch Changes
  • a18c359: fix: correct InvalidCustomPropertyError code and MemoryStore promise handling

v4.7.0

Compare Source

What's Changed

Bring magic to a conversation with sayStream for streaming messages and show loading status with setStatus. Now available for app.event and app.message listeners:

app.event('app_mention', async ({ sayStream, setStatus }) => {
  setStatus({
    status: 'Thinking...',
    loading_messages: ['Waking up...', 'Loading a witty response...'],
  });
  const stream = sayStream({ buffer_size: 100 });
  await stream.append({ markdown_text: 'Thinking... :thinking_face:\n\n' });
  await stream.append({ markdown_text: 'Here is my response!' });
  await stream.stop();
});

The respond function now accepts thread_ts to publish responses in a thread:

app.action('my_action', async ({ ack, respond }) => {
  await ack();
  await respond({ text: 'Replying in thread!', thread_ts: '1234567890.123456' });
});

Configure ping timeouts, reconnect behavior, and other Socket Mode settings directly through App options:

const app = new App({
  socketMode: true,
  appToken: process.env.SLACK_APP_TOKEN,
  token: process.env.SLACK_BOT_TOKEN,
  clientPingTimeout: 15000,
  serverPingTimeout: 60000,
  pingPongLoggingEnabled: true,
});
👾 Enhancements
🐛 Fixes
📚 Documentation
🧰 Maintenance
🎁 Dependencies
Core
CI
Dev
Examples

👋 New Contributors 🎉

Full Changelog: https://github.com/slackapi/bolt-js/compare/@slack/bolt@4.6.0...@​slack/bolt@4.7.0
Milestone: https://github.com/slackapi/bolt-js/milestone/61
Package: https://www.npmjs.com/package/@​slack/bolt/v/4.7.0

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.59.1

Compare Source

🩹 Fixes
  • eslint-plugin: [no-unnecessary-condition] treat void as nullish in no-unnecessary-condition (#​12241)
  • eslint-plugin: [no-unnecessary-type-arguments] handle instantiation expressions (#​12220)
  • eslint-plugin: [no-unnecessary-type-assertion] avoid false positive in logical assignment assertions (#​12278)
  • eslint-plugin: [no-unnecessary-type-assertion] preserve phantom type arguments in generic inference (#​12269)
  • eslint-plugin: [no-unnecessary-type-assertion] preserve index signatures in undefined unions (#​12257)
  • eslint-plugin: [no-unnecessary-type-assertion] fix crash "TypeError: checker.getTypeArguments is not a function" (#​12246)
❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.59.0

Compare Source

🚀 Features
  • eslint-plugin: [no-unnecessary-type-assertion] report more cases based on assignability (#​11789)
❤️ Thank You
  • Ulrich Stark

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.58.2

Compare Source

🩹 Fixes
  • eslint-plugin: [no-unnecessary-condition] use assignability checks in checkTypePredicates (#​12147)
  • remove tsbuildinfo cache file from published packages (#​12187)
❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.58.1

Compare Source

🩹 Fixes
  • eslint-plugin: [no-unused-vars] fix false negative for type predicate parameter (#​12004)
❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.59.1

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.59.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.58.2

Compare Source

🩹 Fixes
  • remove tsbuildinfo cache file from published packages (#​12187)
❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.58.1

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

aws/aws-cdk-cli (aws-cdk)

v2.1120.0

Compare Source

2.1120.0 (2026-04-29)

Features
  • cdk diagnose displays the root cause of a past stack deployment failure (#​1378) (acefbf8)
  • cli: cdk orphan command detaches resources from a stack, allowing resource type upgrades (behind --unstable) (#​1399) (1d0866e)
  • cli: add cdk deploy --method=execute-change-set for two-step deployment workflows (#​1271) (5770c26)
  • deps: upgrade aws-cdk-lib (#​1412) (2154bb1)
  • deps: upgrade aws-cdk-lib (#​1418) (9b14504)
Bug Fixes

v2.1119.0

Compare Source

2.1119.0 (2026-04-23)

Features
  • cli: show diff and prompt for deploy on non-addition changes (#​1372) (739f687)
Bug Fixes

v2.1118.4

Compare Source

2.1118.4 (2026-04-20)

v2.1118.3

Compare Source

2.1118.3 (2026-04-20)

Bug Fixes

v2.1118.2

Compare Source

2.1118.2 (2026-04-16)

v2.1118.1

Compare Source

2.1118.1 (2026-04-16)

Bug Fixes
  • cli: add projen as devDependency to aws-cdk package (#​1368) (7ce6a36)
  • cli: stray quotes in deploy confirmation prompt (#​1369) (bec298a)
  • cli: use change set for deploy approval diff when using change-set method (#​1273) (f2e1fc3)

v2.1118.0

Compare Source

2.1118.0 (2026-04-08)

Features

v2.1117.0

Compare Source

2.1117.0 (2026-04-03)

Features
motdotla/dotenv (dotenv)

v17.4.2

Compare Source

v17.4.1

Compare Source

nodejs/node (node)

v24.15.0

Compare Source

prettier/prettier (prettier)

v3.8.3

Compare Source

v3.8.2

Compare Source

typescript-eslint/typescript-eslint (typescript-eslint)

v8.59.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.59.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.58.2

Compare Source

🩹 Fixes
  • remove tsbuildinfo cache file from published packages (#​12187)
❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.58.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.


Configuration

📅 Schedule: (in timezone America/Chicago)

  • Branch creation
    • On day 1 of the month (* * 1 * *)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the dependency Updates to one or more dependencies label May 1, 2026
@renovate renovate Bot merged commit e2a41fe into main May 1, 2026
1 check passed
@renovate renovate Bot deleted the renovate/all-minor-patch branch May 1, 2026 18:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependency Updates to one or more dependencies

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants